Description
Font style. If the value is not regular, it can be any combination of other values, expressed as a comma delimited list (for example, fontstyle="bold,underline")
Type
Restriction of xs:string
Use
optional
Default
regular
Source
<xs:attribute name="fontstyle" default="regular" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="regular" />
<xs:enumeration value="bold" />
<xs:enumeration value="italic" />
<xs:enumeration value="underline" />
<xs:enumeration value="strikeout" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
|
See Also